home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 7.st / KAMIKAZE.ARC / CLOCK.ASM < prev    next >
Encoding:
Assembly Source File  |  1988-11-14  |  238 b   |  16 lines

  1.  
  2.     ; time_peek()
  3.     ;    catch a look at 200 Hz system clock
  4.     public _time_peek
  5. _time_peek
  6.     pea        timer
  7.     move.w    #38,-(sp)
  8.     trap     #14
  9.     addq    #6,sp
  10.     rts
  11.  
  12. timer     ; return system 200hz clock in d0 from super mode
  13.     move.l    $4ba,d0
  14.     rts
  15.  
  16.